home *** CD-ROM | disk | FTP | other *** search
- #ifndef __SOLUTION_H__
- #define __SOLUTION_H__
-
- // Do not modify this file
-
- #include <MacTypes.h>
- #include <Files.h>
-
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
-
- typedef UInt32 *UInt32ArrayPtr;
- typedef UInt32 **UInt32ArrayHandle;
-
- pascal void GraphInit( Handle *graph, UInt32 verticies );
- pascal void GraphAddDirectedEdge( Handle graph, UInt32 vertex1, UInt32 vertex2 );
- pascal void GraphFindRoute( Handle graph, UInt32 vertex1, UInt32 vertex2, UInt32ArrayHandle *verticies );
-
- #ifdef __cplusplus
- }
- #endif // __cplusplus
-
- #endif // __SOLUTION_H__